home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-01-15 | 2.5 KB | 84 lines | [TEXT/MPS ] |
- #========================================================================
- #
- # Infinity Windoid 2.5.1
- #
- # makefile for MPW
- #
- #------------------------------------------------------------------------
- # © 1991-93 Troy Gaul
- # Infinity Systems
- # All Rights Reserved
- #------------------------------------------------------------------------
- # File: Makefile
- # Target: Infinity Windoid 2.5.1
- # Sources: InfinityWindoid.c
- # WindoidUtil.c
- #========================================================================
-
- Output = Infinity Windoid 2.5.1
-
- #------------------------------------------------------------------------
-
- Type = rsrc
- Creator = RSED
- ResType = WDEF
- ResID = 128
-
- #========================================================================
- # Directories and Options
- #------------------------------------------------------------------------
-
- ObjDir = :obj:
-
- {ObjDir} ƒ : # directory dependency
-
- #------------------------------------------------------------------------
-
- COptions = # -r # warnings ∂
- -b # PC-relative strings ∂
- -mbg off # off, full ∂
- -o "{ObjDir}" ∂
- -opt full # off, (empty)=normal, full, size, speed
-
- #========================================================================
- # Compilation Dependencies
- #------------------------------------------------------------------------
-
- "{ObjDir}"InfinityWindoid.c.o ƒ Makefile ∂
- WindoidDefines.h ∂
- WindoidTypes.h ∂
- WindoidUtil.h ∂
- InfinityWindoid.c
- C {COptions} InfinityWindoid.c
-
- #------------------------------------------------------------------------
-
- "{ObjDir}"WindoidUtil.c.o ƒ Makefile ∂
- WindoidDefines.h ∂
- WindoidTypes.h ∂
- WindoidUtil.h ∂
- WindoidUtil.c
- C {COptions} WindoidUtil.c
-
- #========================================================================
- # Object Files
- #------------------------------------------------------------------------
-
- OBJECTS = "{ObjDir}"InfinityWindoid.c.o ∂
- "{ObjDir}"WindoidUtil.c.o
-
- #========================================================================
- # Linking
- #------------------------------------------------------------------------
-
- "{Output}" ƒƒ Makefile {OBJECTS}
- Link -t {Type} ∂
- -c {Creator} ∂
- -rt {ResType}={ResID} ∂
- -m MAIN ∂
- -sg "{Output}" ∂
- -o "{Output}" ∂
- {OBJECTS}
-
- #------------------------------------------------------------------------
-